home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Misc
/
InstallerNG
/
developer
/
gui
/
example
/
igui_AskFile.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
946b
|
48 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* since ASKFILE and ASKDIR offer nearly the same functionality,
* you could implement both in a single function and just use a
* flag to distinguish, what exactly is needed!
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
char * __asm igui_AskFile(register __a0 APTR application,
register __a1 struct FunctionEnvironment *localenv)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
return (guistuff_AskFile_AskDir(application, localenv, FALSE));
}